home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9206.ARJ / 1006057A < prev    next >
Text File  |  1992-06-02  |  222b  |  12 lines

  1.      struct s_group 
  2.        {
  3.        int num;
  4.        char *nam;
  5.        int (*fun);
  6.        };
  7.     static struct s_group group[N] = {
  8.            { 1, "first", fun1},
  9.            { 2, "second", fun2}
  10.            };
  11.  
  12.